/* ------------------------------------------------*/
/* Fonts  */
/* ------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

/* ------------------------------------------------*/
/* Base CSS Styles */
/* ------------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

button:active, button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

::-moz-selection {
  background-color: #ffffff;
  color: #d81f2f;
  text-shadow: none;
}

::selection {
  background-color: #ffffff;
  color: #d81f2f;
  text-shadow: none;
}

html {
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  width: 100%;
  height: 100%;
  background: #fff100;
}

body {
  position: relative;
  min-width: 320px;
  overflow-x: hidden !important;
  font: normal 400 1.6rem/1.7 'Lato', sans-serif;
  color: #212121;
}

@media only screen and (min-width: 1200px) {
  body {
    overflow: hidden;
  }
}

section {
  position: relative;
  min-width: 320px;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.overflow-hidden {
  overflow: hidden !important;
}


#about,
#portfolio,
#contact {
  display: none;
}

/* ------------------------------------------------*/
/* Typography Start */
/* ------------------------------------------------*/
h1 {
  font: normal 400 4.6rem/1.1 'Lato', sans-serif;
  color: #232323;
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }

  h1.large {
    font-size: 4rem;
  }

}

@media only screen and (min-width: 1600px) {
  h1 {
    font-size: 4rem;
    margin-top: 0;
  }

  h1 {
    font-size: 4rem;
  }

}


/* ------------------------------------------------*/
/* Buttons & Triggers Start */
/* ------------------------------------------------*/
.menu-btn {
  position: absolute;
  top: 3.4rem;
  right: 10%;
  width: 10px;
  height: 40px;
  z-index: 10 !important;
  -webkit-transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}

.menu-btn.is-visible {
  opacity: 1;
}

@media only screen and (min-width: 1200px) {
  .menu-btn {
    position: fixed;
    right: 7rem;
  }
}

.menu-trigger {
  display: block;
  position: relative;
  width: 10px;
  height: 40px;
  z-index: 9;
}

.menu-trigger::before, .menu-trigger::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-1px) rotate(0deg);
     -moz-transform: translateY(-1px) rotate(0deg);
      -ms-transform: translateY(-1px) rotate(0deg);
          transform: translateY(-1px) rotate(0deg);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #000000;
}

.menu-trigger::before {
  -webkit-transform: translateY(-10px) rotate(0deg);
     -moz-transform: translateY(-10px) rotate(0deg);
      -ms-transform: translateY(-10px) rotate(0deg);
          transform: translateY(-10px) rotate(0deg);
}

.menu-trigger::after {
  -webkit-transform: translateY(10px) rotate(0deg);
     -moz-transform: translateY(10px) rotate(0deg);
      -ms-transform: translateY(10px) rotate(0deg);
          transform: translateY(10px) rotate(0deg);
}

.menu-trigger.light::before, .menu-trigger.light::after {
  background-color: #d81f2f;
}

.menu-trigger.section-active-dark::before, .menu-trigger.section-active-dark::after {
  background-color: #000000;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media only screen and (min-width: 1200px) {
  .menu-trigger::before, .menu-trigger::after {
    background-color: #d81f2f;
  }
  .menu-trigger.section-active-dark::before, .menu-trigger.section-active-dark::after {
    background-color: #d81f2f;
  }
}

.section-close {
  position: relative;
  display: block;
  width: 10px;
  height: 40px;
  -webkit-transform: scale3d(0, 0, 0);
     -moz-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  -o-transition: transform .3s ease-in-out;
  -moz-transition: transform .3s ease-in-out, -moz-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out, -moz-transform .3s ease-in-out;
}

.section-close::before, .section-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #999999;
}

.section-close::before {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.section-close::after {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.section-close.is-scaled-up {
  -webkit-transform: scale3d(1, 1, 1);
     -moz-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.menu-close {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transform: scale3d(0, 0, 0);
     -moz-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  -o-transition: transform .3s ease-in-out;
  -moz-transition: transform .3s ease-in-out, -moz-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out, -moz-transform .3s ease-in-out;
}

.menu-close::before, .menu-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
}

.menu-close::before {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu-close::after {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-close.is-scaled-up {
  -webkit-transform: scale3d(1, 1, 1);
     -moz-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}


/* ------------------------------------------------*/
/* Menu Style*/
/* ------------------------------------------------*/
.menu {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #6d0019; /* Old browsers */
  background: -moz-linear-gradient(-45deg,  #6d0019 0%, #8f0222 56%, #a90329 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg,  #6d0019 0%,#8f0222 56%,#a90329 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg,  #6d0019 0%,#8f0222 56%,#a90329 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d0019', endColorstr='#a90329',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

  z-index: 10;
  overflow-y: auto;
  overflow-x: hidden;
}

@media only screen and (min-width: 1200px) {
  .menu {
    overflow: hidden;
  }
}

.menu__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10.8rem 0;
  min-height: 480px;
  z-index: 1;
}

@media only screen and (min-width: 1200px) {
  .menu__container {
    padding: 0;
  }
}

.menu__controls {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3.4rem 10%;
}

@media only screen and (min-width: 1200px) {
  .menu__controls {
    padding: 3.4rem 7rem;
  }
}

.menu__content {
  padding: 0 10%;
}

@media only screen and (min-width: 1200px) {
  .menu__content {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    padding: 0 7rem 4rem 7rem;
  }
}

.menu__caption {
  display: block;
  font: italic 400 4.2rem/4rem 'Lato', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  width: auto;
  margin-bottom: 3.4rem;
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  -moz-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

.menu__caption.is-visible {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .menu__caption {
    display: inline-block;
    height: 4rem;
    padding-right: 1rem;
    margin-bottom: 0;
    -webkit-transform-origin: bottom left;
       -moz-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: rotate(-90deg) translate3d(-100%, 40px, 0);
       -moz-transform: rotate(-90deg) translate3d(-100%, 40px, 0);
            transform: rotate(-90deg) translate3d(-100%, 40px, 0);
  }
}

.menu__navigation {
  padding-left: 0;
}

.menu__navigation li {
  display: block;
  padding: 0 0 2rem 0;
}

.menu__navigation li a {
  font: normal 400 3rem/1 'Lato', sans-serif;
  color: #f5f5f5;
  opacity: 0;
  -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: color .5s ease-in-out;
  -o-transition: color .5s ease-in-out;
  -moz-transition: color .5s ease-in-out;
  transition: color .5s ease-in-out;
  text-align: center;
}

.no-touch .menu__navigation li:hover a {
  color: #fff100;
}

@media only screen and (min-width: 768px) {
  .menu__navigation {
    padding-left: 0;
  }
  .menu__navigation li a {
    font-size: 4rem;
  }
}

@media only screen and (min-width: 1600px) {
  .menu__navigation li a {
    font-size: 4rem;
  }
}

.section-close {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transform: scale3d(0, 0, 0);
     -moz-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  -o-transition: transform .3s ease-in-out;
  -moz-transition: transform .3s ease-in-out, -moz-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out, -moz-transform .3s ease-in-out;
}

.section-close::before, .section-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #999999;
}

.section-close::before {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.section-close::after {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.section-close.is-scaled-up {
  -webkit-transform: scale3d(1, 1, 1);
     -moz-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.mt60 {
  margin-top: 60px;
}

.lockbar{
margin-bottom: auto;
margin-top: 60px;
height: 60px;
background-color: #fff;
border-radius: 30px;
padding: 10px;
}

.lock_input{
color: white;
border: 0;
outline: 0;
background: none;
width: 0;
caret-color:transparent;
line-height: 40px;
transition: width 0.4s linear;
}

.lock_input::placeholder {
  color: #121212;
  text-align: center;
  font-weight: 700;
}

.lockbar:hover > .lock_input{
padding: 0 10px;
width: 450px;
caret-color:red;
transition: width 0.4s linear;
color: #121212;
}

.lockbar:hover > .lock_icon{
background: white;
color: #d81f2f;
}

.lock_icon{
height: 40px;
width: 40px;
float: right;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
color:#d81f2f;
}

.content-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff100;
  z-index: 3;
  -webkit-transform: translateX(0%);
     -moz-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.contact100-form {
  width: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 68px;
}

.contact100-form-title {
  display: block;
  width: 100%;
  font-size: 38px;
  color: #121212;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 40px;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 65px;
}

.rs1-wrap-input100 {
  width: calc((100% - 30px) / 2);
}

.label-input100 {
  font-size: 16px;
  color: #121212;
  line-height: 1.5;
  padding-left: 5px;
}

.input100 {
  display: block;
  width: 100%;
  background: #f5f5f5;
  font-size: 18px;
  color: #121212;
  line-height: 1.2;
  padding: 0 5px;
  font-family: 'Lato', sans-serif;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: #d81f2f;
}


/*---------------------------------------------*/
input.input100 {
  height: 30px;
}


textarea.input100 {
  min-height: 110px;
  padding-top: 9px;
  padding-bottom: 13px;
}


.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  margin-top: -25px;
}

.contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 160px;
  height: 50px;
  background-color: #d81f2f;
  border-radius: 25px;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  box-shadow: 0 10px 30px 0px rgba(255, 75, 90, 0.5);
  -moz-box-shadow: 0 10px 30px 0px rgba(255, 75, 90, 0.5);
  -webkit-box-shadow: 0 10px 30px 0px rgba(255, 75, 90, 0.5);
  -o-box-shadow: 0 10px 30px 0px rgba(255, 75, 90, 0.5);
  -ms-box-shadow: 0 10px 30px 0px rgba(255, 75, 90, 0.5);
}

.contact100-form-btn i {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn:hover {
  background-color: #333333;
  box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -webkit-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -o-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -ms-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
}

.contact100-form-btn:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
  .wrap-contact100 {
    padding: 82px 80px 33px 80px;
  }
}

@media (max-width: 768px) {
  .rs1-wrap-input100 {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wrap-contact100 {
    padding: 82px 15px 33px 15px;
  }
}
